home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJLSR106.ARJ / HTON.S < prev    next >
Text File  |  1992-03-02  |  221b  |  19 lines

  1.     .globl    _ntohl
  2. _ntohl:
  3.     .globl    _htonl
  4. _htonl:
  5.     movl    4(%esp),%eax
  6.     xchgb    %ah,%al
  7.     ror    $16,%eax
  8.     xchgb    %ah,%al
  9.     ret
  10.  
  11.     .globl    _ntohs
  12. _ntohs:
  13.     .globl    _htons
  14. _htons:
  15.     movswl    4(%esp),%eax
  16.     xchgb    %ah,%al
  17.     ret
  18.  
  19.